home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / FIDO.ASP < prev    next >
Text File  |  1988-01-01  |  1KB  |  41 lines

  1. ;*************************************************************************
  2. ;* FIDO.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                       *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto FIDO Bulletin Boards.    *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.  
  8. CLEAR
  9. LOCATE 0 0
  10. BOX 0 0 4 23 14
  11. ATSAY 2 2 14 "Logging onto FIDO..."
  12. LOCATE 6 0
  13.  
  14. IF NOT LINKED
  15.    DIAL "6"                  ;set to your dial dir entry for FIDO
  16. ENDIF
  17.  
  18. PAUSE 1
  19. TRANSMIT " "
  20. PAUSE 1
  21. TRANSMIT " "
  22.  
  23. WAITFOR "FIRST"              ;wait for first name prompt
  24. PAUSE 1
  25. TRANSMIT "FIRSTNAME^M"       ;send your first name
  26.  
  27. WAITFOR "LAST"               ;wait for last name prompt
  28. PAUSE 1
  29. TRANSMIT "LASTNAME^M"
  30.  
  31. WAITFOR "]"                  ;wait for confirmation prompt
  32. PAUSE 1
  33. TRANSMIT "Y^M"               ;confirm it
  34.  
  35. WAITFOR "Password: "         ;wait for password prompt
  36. PAUSE 1
  37. SEND "PASSWORD^M"
  38.  
  39. ALARM 2                      ;inform user logon complete
  40.  
  41.